/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  height: 100%;
  overflow-x: hidden;
  background: #f5f5f5;
  color: #222;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  color: white;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #C9A227;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */ @media (max-width: 768px) { .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; right: 20px; background: rgba(0, 0, 0, 0.9); padding: 20px; border-radius: 8px; } .nav-links.show { display: flex; } .menu-toggle { display: block; } .hero { padding-left: 30px; } .hero-content h1 { font-size: 38px; } } /* ===== FOOTER ===== */ .footer { background: #111; color: #fff; padding: 60px 80px 20px; } .footer-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; } .footer h2, .footer h3 { margin-bottom: 15px; color: #C9A227; } .footer p { line-height: 1.6; max-width: 300px; } .footer-links ul { list-style: none; } .footer-links ul li { margin-bottom: 10px; } .footer-links a { text-decoration: none; color: #ccc; transition: 0.3s; } .footer-links a:hover { color:#C9A227; } .social-icons { display: flex; gap: 15px; margin-top: 10px; } .social-icons a { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #222; border-radius: 50%; color: white; font-size: 18px; transition: 0.3s; } .social-icons a:hover { background: #C9A227; color: black; transform: translateY(-4px); } .footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; font-size: 14px; color: #aaa; } /* ===== Responsive ===== */ @media (max-width: 768px) { .footer-container { flex-direction: column; } } body{ margin:0; font-family:'Poppins', sans-serif; color:#222; overflow-x:hidden; } /* ================= HERO / ABOUT ================= */ .projects-hero{ height: 40vh; /* slightly taller for better look */ background: url("../images/home.png") center/cover no-repeat; /* use your image */ position: relative; display: flex; justify-content: center; align-items: center; } /* Dark overlay for readability */ .overlay{ background: rgba(0,0,0,0.4); /* semi-transparent black */ width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fdfdfd;; text-align: center; padding: 20px; } /* Hero Title */ .overlay h1{ font-family: 'Cormorant Garamond', serif; font-size: 45px; margin-bottom: 15px; letter-spacing: 2px; font-weight: 700; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); /* makes text readable on image */ animation: fadeDown 1s ease; } /* Hero Subtitle */ .overlay p{ margin-top:15px; font-size:18px; letter-spacing: 1px; color:#C9A227; text-shadow: 1px 1px 6px rgba(0,0,0,0.6); animation: fadeUp 1.2s ease; } /* Animations */ @keyframes fadeDown { 0% { opacity: 0; transform: translateY(-30px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } } /* Responsive */ @media(max-width:900px){ .overlay h1{ font-size: 40px; } .overlay p{ font-size: 16px; } }
/* ===== DROPDOWN ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  min-width: 200px;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: #C9A227;
  color: black;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===== HERO ===== */
.projects-hero {
  height: 40vh;
  background: url("../images/home.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.overlay {
  background: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.overlay h1 {
  font-size: 45px;
  font-family: 'Cormorant Garamond', serif;
}

/* ===== PROJECT SECTION ===== */
.projects-section {
  padding: 80px 8%;
}

/* ===== FILTER MENU ===== */
 .filter-menu { text-align: center;
   margin-bottom: 30px;
   }
    .filter-btn 
    { padding: 8px 18px;
       margin: 5px;
        border: none;
         background:
          #eaeaea;
           cursor:pointer;
            border-radius: 4px;
             font-weight: 500;
              transition: 0.3s;
             } 
             .filter-btn:hover, .filter-btn.active 
             {
               background: #C9A227;
                color: #fff;
               } 
              
/* ===== GRID (PROFESSIONAL) ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ===== CARD ===== */
.project-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* ===== IMAGE (NO CROP + CENTERED) ===== */
.project-card img {
  width: 100%;
  height: 260px;              /* same height for all */
  object-fit: contain;        /* FULL image visible */
  background: #f1f1f1;
  border-radius: 10px;
  transition: 0.4s;
}

.project-card p {
  margin-top: 10px;
  text-align: center;
}

.project-video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
/* ===== HOVER ===== */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.project-card:hover img {
  transform: scale(1.03);
}

/* ===== TITLE ===== */
.overlay1 {
  margin-top: 10px;
}

.overlay1 p {
  font-size: 14px;
  color: #111;
  font-weight: 500;
}

/* ===== BACK BUTTON ===== */
.back-container {
  padding: 20px 8%;
}

.back-btn {
  background: #C9A227;
  color: #000;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.back-btn:hover {
  background: #000;
  color: #C9A227;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #fff;
  padding: 60px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer h2,
.footer h3 {
  color: #C9A227;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #C9A227;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.social-icons a:hover {
  background: #C9A227;
  color: black;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: black;
    padding: 20px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 500px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.overlay h1 {
  color: white;
}

.overlay p {
  color: #C9A227;
}